home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / pa16v319 / knownbug.txt < prev    next >
Encoding:
Text File  |  1997-08-23  |  2.6 KB  |  71 lines

  1. Known bugs and limitations in Project Analyzer 3.1.x
  2.  
  3. Please report any new bugs to vbshop@aivosto.com.
  4.  
  5. ===========
  6. Limitations
  7. ===========
  8.  
  9. - In the 16-bit version, the number of certain things (like vars/consts
  10.   and references) is limited to 32767. If you encounter this problem,
  11.   use the 32-bit version
  12. - The size of variable, constant and procedure names is restricted to 64
  13.   characters to save some memory. Longer names are truncated.
  14. - VB 5.0 is not supported by Project Analyzer 3.x. Project Analyzer 4.x
  15.   and later support it.
  16.  
  17. ==================
  18. Known misbehaviour
  19. ==================
  20.  
  21. - Long lines don't word wrap on some report types
  22. - Reports to .wri files look ugly
  23. - Long procedural call tree reports (All procedures) can hang the computer
  24. - "Sub [Dis]ConnectAddIn" is never "dead" even if your app is not an add-in
  25. - In the hypertext window, letters in DefType statements may be 
  26.   mistaken for one-letter variable names
  27. - MyClass.MyProperty = 987      works OK (MyProperty Let), but
  28.   MyClass(123).MyProperty = 987 doesn't (thinks it's MyProperty Get)
  29.                                 Problem with subscript.
  30.  
  31. - In the hypertext window, if you have two different definitions with the
  32.   same name (e.g. Form1.MyVar and Form2.MyVar), the program may
  33.   highlight the both in red when the other one is highlighted
  34.  
  35. - VB 3.0: The Summary report shows somewhat distorted figures for 
  36.   1. Global Name Table: Type definitions and DLLs declarations are
  37.      not calculated correctly.
  38.   2. Global Symbol Table: type definitions are excluded, and everything 
  39.      else is assumed to take 10 bytes of memory.
  40.   Use freeware VB Space (by Gregg Irwin) for more exact calculations
  41.  
  42. =======================
  43. Unsupported VB 4.0 code
  44. =======================
  45.  
  46. - Compiler directives (#if xyz then)
  47. - Line continuation character "_"
  48.  
  49. ========================
  50. Deficiencies in FRX view
  51. ========================
  52.  
  53. - Shows only graphical data.
  54.   Textual data (like the List property of a ListBox) is not shown.
  55. - May incorrectly report (Icon) instead of (Bitmap)
  56. - Doesn't understand if one control has more than 1 picture
  57.   => Shows only one picture
  58. - Understands the following properties: .Picture, .Icon and .MouseIcon
  59. - Can't handle SSCommand.Picture. Seems to me that these pictures
  60.   are stored differently
  61.  
  62. ================
  63. For best results
  64. ================
  65.  
  66. - Always declare your local variables (use Option Explicit)
  67. - Always save your files as text (VB 3.0)
  68. - Use MS Word as RTF editor
  69. - Wait for the analysis to end completely (it has 2 phases)
  70.  
  71.